home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 August: Tool Chest / Dev.CD Aug 98 TC.toast / Tool Chest / Testing & Debugging / Virtual User / Virtual User Current Release / Examples / Example Scripts / GestaltTest.vu < prev    next >
Encoding:
Text File  |  1998-06-04  |  1022 b   |  34 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:            GestaltTest.vu
  3. #
  4. #    Contains:        Quick usage of the sample tasks to work with Gestalt calls.
  5. #
  6. #    Requirements:    Gestalt.vulib and a target capable of supporting Gestalt
  7. #                    calls.
  8. #
  9. #    Written by:    David Gaxiola
  10. #
  11. #    Copyright:    © 1992 by Apple Computer, Inc., all rights reserved.
  12. #
  13. #    Change History (most recent first):
  14. #
  15. #                  8/4/92    DGG        Renamed tasks.
  16. #                 7/23/92    DGG        Created.
  17. #
  18. #    To Do:
  19. #
  20.  
  21. Libraries "Gestalt.vulib";
  22.  
  23. SetGestaltGlobals();
  24. println "Gestalt Information:∂n--------------------";
  25. println "AddressingModeAttr: ", GetGestaltAddressingModeAttr();
  26. println "EasyAccessAttr: ", GetGestaltEasyAccessAttr();
  27. println "FPUType: ", GetGestaltFPUType();
  28. println "KeyboardType: ", GetGestaltKeyboardType();
  29. println "LogicalRAMSize: ", GetGestaltLogicalRAMSize();
  30. println "MachineType: ", GetGestaltMachineType();
  31. println "MMUType: ", GetGestaltMMUType();
  32. println "PhysicalRAMSize: ", GetGestaltPhysicalRAMSize();
  33. println "ProcessorType: ", GetGestaltProcessorType();
  34. println "VMAttr: ", GetGestaltVMAttr();